home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Interfaces&Libraries / Universal / Interfaces / PInterfaces / FinderRegistry.p < prev    next >
Encoding:
Text File  |  1998-08-17  |  20.4 KB  |  574 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        FinderRegistry.p
  3.  
  4.      Contains:    Data types for Finder AppleEvents
  5.  
  6.      Version:    Technology:    Mac OS 8
  7.                  Release:    Universal Interfaces 3.2
  8.  
  9.      Copyright:    © 1985-1998 by Apple Computer, Inc., all rights reserved.
  10.  
  11.      Bugs?:        For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. }
  17. {$IFC UNDEFINED UsingIncludes}
  18. {$SETC UsingIncludes := 0}
  19. {$ENDC}
  20.  
  21. {$IFC NOT UsingIncludes}
  22.  UNIT FinderRegistry;
  23.  INTERFACE
  24. {$ENDC}
  25.  
  26. {$IFC UNDEFINED __FINDERREGISTRY__}
  27. {$SETC __FINDERREGISTRY__ := 1}
  28.  
  29. {$I+}
  30. {$SETC FinderRegistryIncludes := UsingIncludes}
  31. {$SETC UsingIncludes := 1}
  32.  
  33. {$IFC UNDEFINED __AEREGISTRY__}
  34. {$I AERegistry.p}
  35. {$ENDC}
  36. {$IFC UNDEFINED __OSA__}
  37. {$I OSA.p}
  38. {$ENDC}
  39.  
  40.  
  41. {$PUSH}
  42. {$ALIGN MAC68K}
  43. {$LibExport+}
  44.  
  45.  
  46. {
  47.   //////////////////////////////////////
  48.    Finder Suite
  49.   //////////////////////////////////////
  50. }
  51.  
  52. {
  53.    The old Finder Event suite was 'FNDR'
  54.    The new suite is 'fndr'
  55. }
  56.  
  57. CONST
  58.     kAEFinderSuite                = 'fndr';
  59.  
  60. {
  61.   //////////////////////////////////////
  62.    Finder Events
  63.   //////////////////////////////////////
  64. }
  65.     kAECleanUp                    = 'fclu';
  66.     kAEEject                    = 'ejct';
  67.     kAEEmpty                    = 'empt';
  68.     kAEErase                    = 'fera';
  69.     kAEGestalt                    = 'gstl';
  70.     kAEPutAway                    = 'ptwy';
  71.     kAERebuildDesktopDB            = 'rddb';
  72.     kAESync                        = 'fupd';
  73.     kAEInterceptOpen            = 'fopn';
  74.  
  75. {  "Sort" from the database suite: }
  76.     kAEDatabaseSuite            = 'DATA';
  77.     kAESort                        = 'SORT';
  78.  
  79. {
  80.   ////////////////////////////////////////////////////////////////////////
  81.    Classes
  82.    Note: all classes are defined up front so that the property definitions
  83.    can reference classes.
  84.   ////////////////////////////////////////////////////////////////////////
  85. }
  86.  
  87.     cInternalFinderObject        = 'obj ';                        {  cReference - used to distinguish objects used inside the Finder only }
  88.  
  89. {
  90.    Main Finder class definitions
  91.    Indentation implies object model hierarchy
  92. }
  93.                                                                 {  We do not use class cItem from AERegistry.r. Instead our class Item is a cObject //••  BREADCRUMB pmc - WHY?? }
  94.                                                                 {             cItem                                    = 'citm',        // defined in AERegistry.r }
  95.                                                                 {                 cFile                                = 'file',    // defined in AERegistry.r }
  96.     cAliasFile                    = 'alia';
  97.     cApplicationFile            = 'appf';
  98.     cControlPanelFile            = 'ccdv';
  99.     cDeskAccessoryFile            = 'dafi';
  100.     cDocumentFile                = 'docf';
  101.     cFontFile                    = 'fntf';
  102.     cSoundFile                    = 'sndf';
  103.     cClippingFile                = 'clpf';
  104.     cContainer                    = 'ctnr';
  105.     cDesktop                    = 'cdsk';
  106.     cSharableContainer            = 'sctr';
  107.     cDisk                        = 'cdis';
  108.     cFolder                        = 'cfol';
  109.     cSuitcase                    = 'stcs';
  110.     cAccessorySuitcase            = 'dsut';
  111.     cFontSuitcase                = 'fsut';
  112.     cTrash                        = 'ctrs';
  113.     cDesktopPrinter                = 'dskp';
  114.     cContentSpace                = 'dwnd';                        {                 cWindow                                = 'cwin',        // defined in AERegistry.r }
  115.     cContainerWindow            = 'cwnd';
  116.     cInfoWindow                    = 'iwnd';
  117.     cSharingWindow                = 'swnd';
  118.     cStatusWindow                = 'qwnd';
  119.     cClippingWindow                = 'lwnd';
  120.     cPreferencesWindow            = 'pwnd';
  121.     cDTPWindow                    = 'dtpw';
  122.     cProcess                    = 'prcs';
  123.     cAccessoryProcess            = 'pcda';
  124.     cApplicationProcess            = 'pcap';
  125.     cGroup                        = 'sgrp';
  126.     cUser                        = 'cuse';                        {             cApplication                            = 'capp',        // defined in AERegistry.r }
  127.     cSharingPrivileges            = 'priv';
  128.     cPreferences                = 'cprf';
  129.     cLabel                        = 'clbl';                        {  For use by viewer search engines: }
  130.     cOnlineDisk                    = 'cods';
  131.     cOnlineLocalDisk            = 'clds';
  132.     cOnlineRemoteDisk            = 'crds';                        {  Miscellaneous class definitions }
  133.     cEntireContents                = 'ects';                        { •• BREADCRUMB  pmc - also defined in EntireContents.h }
  134.     cIconFamily                    = 'ifam';
  135.  
  136.  
  137. {
  138.   //////////////////////////////////////
  139.    Properties
  140.   //////////////////////////////////////
  141. }
  142.  
  143. {  Properties of class cItem (really cObject) }
  144.                                                                 {     pBounds                                    = 'pbnd',            // defined in AERegistry.r }
  145.     pComment                    = 'comt';
  146.     pContainer                    = 'ctnr';
  147.     pContentSpace                = 'dwnd';
  148.     pCreationDateOld            = 'crtd';                        {  to support pre-Finder 8 scripts }
  149.     pCreationDate                = 'ascd';                        {  from File Commands OSAX }
  150.     pDescription                = 'dscr';
  151.     pDisk                        = 'cdis';
  152.     pFolderOld                    = 'cfol';                        {  to support pre-Finder 8 scripts }
  153.     pFolder                        = 'asdr';                        {  from File Commands OSAX }
  154.     pIconBitmap                    = 'iimg';                        {     pID                                        = 'ID  ',            // defined in AERegistry.r }
  155.     pInfoWindow                    = 'iwnd';
  156.     pKind                        = 'kind';
  157.     pLabelIndex                    = 'labi';
  158.     pModificationDateOld        = 'modd';                        {  to support pre-Finder 8 scripts }
  159.     pModificationDate            = 'asmo';                        {  from File Commands OSAX }
  160.                                                                 {     pName                                    = 'pnam',            // defined in AERegistry.r }
  161.     pPhysicalSize                = 'phys';
  162.     pPosition                    = 'posn';
  163.     pIsSelected                    = 'issl';
  164.     pSize                        = 'ptsz';                        {  pPointSize defined in AERegistry.r }
  165.     pWindow                        = 'cwin';
  166.     pPreferencesWindow            = 'pwnd';
  167.  
  168.  
  169. {  Properties of class cFile (subclass of cItem) }
  170.     pFileCreator                = 'fcrt';
  171.     pFileType                    = 'asty';                        {  from File Commands OSAX }
  172.     pFileTypeOld                = 'fitp';                        {  to support pre-Finder 8 scripts }
  173.     pIsLocked                    = 'aslk';                        {  from File Commands OSAX }
  174.     pIsLockedOld                = 'islk';                        {  to support pre-Finder 8 scripts }
  175.                                                                 {     pIsStationeryPad                        = 'pspd',            // defined in AERegistry.r                             }
  176.                                                                 {     pVersion                                = 'vers',            // defined in AERegistry.r }
  177.     pProductVersion                = 'ver2';
  178.  
  179.  
  180. {  Properties of class cAliasFile (subclass of cFile) }
  181.     pOriginalItem                = 'orig';
  182.  
  183. {  Properties of class cApplicationFile (subclass of cFile) }
  184.     pMinAppPartition            = 'mprt';
  185.     pAppPartition                = 'appt';
  186.     pSuggestedAppPartition        = 'sprt';
  187.     pIsScriptable                = 'isab';
  188.  
  189. {
  190.    Properties of class cControlPanel (Views CP only) (subclass of cFile)
  191.    Note: the other view-like preference settings are not available in the Views
  192.    control panel. These properties are only offered here for backward compatability.
  193.    To set the full range of Finder Preferences, use the Preferences object.
  194. }
  195.     pShowFolderSize                = 'sfsz';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  196.     pShowComment                = 'scom';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  197.     pShowDate                    = 'sdat';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  198.     pShowCreationDate            = 'scda';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  199.     pShowKind                    = 'sknd';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  200.     pShowLabel                    = 'slbl';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  201.     pShowSize                    = 'ssiz';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  202.     pShowVersion                = 'svrs';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  203.     pSortDirection                = 'sord';
  204.     pShowDiskInfo                = 'sdin';                        {  Always on in Finder 8.0 HIS }
  205.     pListViewIconSize            = 'lvis';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  206.     pGridIcons                    = 'fgrd';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  207.     pStaggerIcons                = 'fstg';                        {  No longer part of the Finder 8.0 HIS }
  208.     pViewFont                    = 'vfnt';
  209.     pViewFontSize                = 'vfsz';
  210.  
  211. {  Properties of class cContainer (subclass of cItem) }
  212.     pCompletelyExpanded            = 'pexc';
  213.     pContainerWindow            = 'cwnd';
  214.     pEntireContents                = 'ects';
  215.     pExpandable                    = 'pexa';
  216.     pExpanded                    = 'pexp';
  217.     pPreviousView                = 'svew';                        {     pSelection                                = 'sele',        // defined in AERegistry.r }
  218.     pView                        = 'pvew';
  219.     pIconSize                    = 'lvis';                        {  defined above }
  220.     pKeepArranged                = 'arrg';
  221.     pKeepArrangedBy                = 'arby';
  222.  
  223. {  Properties of class cDesktop (subclass of cContainer) }
  224.     pStartupDisk                = 'sdsk';
  225.     pTrash                        = 'trsh';                        {  NOTE can't use cTrash     }
  226.  
  227. {  Properties of class cSharableContainer (subclass of cContainer) }
  228.     pOwner                        = 'sown';
  229.     pOwnerPrivileges            = 'ownr';
  230.     pGroup                        = 'sgrp';
  231.     pGroupPrivileges            = 'gppr';
  232.     pGuestPrivileges            = 'gstp';
  233.     pArePrivilegesInherited        = 'iprv';
  234.     pExported                    = 'sexp';
  235.     pMounted                    = 'smou';
  236.     pSharingProtection            = 'spro';
  237.     pSharing                    = 'shar';
  238.     pSharingWindow                = 'swnd';
  239.  
  240. {  Properties of class cDisk (subclass of cSharableContainer) }
  241.     pCapacity                    = 'capa';
  242.     pEjectable                    = 'isej';
  243.     pFreeSpace                    = 'frsp';
  244.     pLocal                        = 'isrv';
  245.     pIsStartup                    = 'istd';
  246.  
  247. {  Properties of class cTrash (subclass of cSharableContainer) }
  248.     pWarnOnEmpty                = 'warn';
  249.  
  250. {  Properties of class cWindow (subclass of cContentSpace) }
  251.                                                                 {     pBounds                                    = 'pbnd',        // defined in AERegistry.r }
  252.                                                                 {     pHasCloseBox                            = 'hclb',        // defined in AERegistry.r }
  253.                                                                 {     pIsFloating                                = 'isfl',        // defined in AERegistry.r }
  254.                                                                 {     pIndex                                    = 'pidx',        // defined in AERegistry.r }
  255.                                                                 {     pIsModal                                = 'pmod',        // defined in AERegistry.r }
  256.                                                                 {     pPosition                                = 'posn',        // defined above }
  257.                                                                 {     pIsResizable                            = 'prsz',        // defined in AERegistry.r }
  258.                                                                 {     pHasTitleBar                            = 'ptit',        // defined in AERegistry.r }
  259.                                                                 {     pVisible                                = 'pvis',        // defined in AERegistry.r }
  260.                                                                 {     pIsZoomable                                = 'iszm',        // defined in AERegistry.r }
  261.                                                                 {     pIsZoomed                                = 'pzum',        // defined in AERegistry.r }
  262.     pIsZoomedFull                = 'zumf';
  263.     pIsPopup                    = 'drwr';
  264.     pIsPulledOpen                = 'pull';                        {  only applies to popup windows }
  265.     pIsCollapsed                = 'wshd';                        {  only applies to normal windows }
  266.  
  267. {  Properties of class cContainerWindow (subclass of cWindow) }
  268.     pObject                        = 'cobj';
  269.  
  270. {  Properties of class cSharingWindow (subclass of cWindow) }
  271.     pSharableContainer            = 'sctr';
  272.  
  273. {  Properties of networking support }
  274.     pFileShareOn                = 'fshr';
  275.     pFileShareStartingUp        = 'fsup';
  276.     pProgramLinkingOn            = 'iac ';
  277.  
  278. {  Properties of class cPreferencesWindow (subclass of cWindow) }
  279.                                                                 {     pShowFolderSize                            = 'sfsz',            // defined above for Views CP }
  280.                                                                 {     pShowComment                            = 'scom',            // defined above for Views CP }
  281.     ShowModificationDate        = 'sdat';                        {  pShowDate defined above for Views CP }
  282.                                                                 {     pShowKind                                = 'sknd',            // defined above for Views CP }
  283.                                                                 {     pShowLabel                                = 'slbl',            // defined above for Views CP }
  284.                                                                 {     pShowSize                                = 'ssiz',            // defined above for Views CP }
  285.                                                                 {     pShowVersion                            = 'svrs',            // defined above for Views CP }
  286.                                                                 {     pShowCreationDate                        = 'scda',            // Removed from Finder 8.0 HIS }
  287.                                                                 {     pShowFileType                            = 'sfty',            // Removed from Finder 8.0 HIS }
  288.                                                                 {     pShowFileCreator                        = 'sfcr',            // Removed from Finder 8.0 HIS }
  289.                                                                 {     pListViewIconSize                        = 'lvis',            // defined above for Views CP }
  290.                                                                 {     pGridIcons                                = 'fgrd',            // defined above for Views CP }
  291.                                                                 {     pStaggerIcons                            = 'fstg',            // defined above for Views CP }
  292.                                                                 {     pViewFont                                = 'vfnt',            // defined above for Views CP }
  293.                                                                 {     pViewFontSize                            = 'vfsz',            // defined above for Views CP }
  294.     pUseRelativeDate            = 'urdt';                        {  Moved to a per-folder basis in Finder 8.0 HIS }
  295.     pDelayBeforeSpringing        = 'dela';
  296.     pSpringOpenFolders            = 'sprg';
  297.     pUseShortMenus                = 'usme';
  298.     pUseWideGrid                = 'uswg';
  299.     pLabel1                        = 'lbl1';
  300.     pLabel2                        = 'lbl2';
  301.     pLabel3                        = 'lbl3';
  302.     pLabel4                        = 'lbl4';
  303.     pLabel5                        = 'lbl5';
  304.     pLabel6                        = 'lbl6';
  305.     pLabel7                        = 'lbl7';                        {     pObject                                    = cObject            // defined above }
  306.  
  307. {  Properties of class cProcess (subclass of cObject) }
  308.                                                                 {     pName                                    = 'pnam',            // defined in AERegistry.r }
  309.     pFile                        = 'file';                        {     pCreatorType                            = 'fcrt',            // defined above }
  310.                                                                 {     pFileType                                = 'asty',            // defined above }
  311.                                                                 {     pIsFrontProcess                            = 'pisf',            // defined in AERegistry.r }
  312.                                                                 {     pAppPartition                            = 'appt',            // defined above }
  313.     pPartitionSpaceUsed            = 'pusd';                        {     pIsScriptable                            = 'isab',            // defined in AERegistry.r }
  314.                                                                 {     pVisible                                = 'pvis'            // defined in AERegistry.r }
  315.     pLocalAndRemoteEvents        = 'revt';
  316.  
  317. {  Properties of class cAccessoryProcess (subclass of cProcess) }
  318.     pDeskAccessoryFile            = 'dafi';
  319.  
  320. {  Properties of class cApplicationProcess (subclass of cProcess) }
  321.     pApplicationFile            = 'appf';
  322.  
  323.  
  324. {  Properties of class cUser (subclass of cObject) }
  325.                                                                 {     pBounds }
  326.                                                                 {     pIconBitmap }
  327.                                                                 {     pLabelIndex }
  328.                                                                 {     pName }
  329.                                                                 {     pPosition }
  330.                                                                 {     pWindow                                    = cWindow,            // defined above }
  331.     pCanConnect                    = 'ccon';
  332.     pCanChangePassword            = 'ccpw';
  333.     pCanDoProgramLinking        = 'ciac';
  334.     pIsOwner                    = 'isow';
  335.     pARADialIn                    = 'arad';
  336.     pShouldCallBack                = 'calb';
  337.     pCallBackNumber                = 'cbnm';
  338.  
  339. {
  340.    Properties of class cApplication (subclass of cObject)
  341.    NOTE: properties for the special folders must match their respective kXXXFolderType constants
  342. }
  343.     pAboutMacintosh                = 'abbx';
  344.     pAppleMenuItemsFolder        = 'amnu';                        {  kAppleMenuFolderType }
  345.                                                                 {     pClipboard                                = 'pcli',            // defined in AERegistry.r }
  346.     pControlPanelsFolder        = 'ctrl';                        {  kControlPanelFolderType }
  347.     pDesktop                    = 'desk';                        {  kDesktopFolderType }
  348.     pExtensionsFolder            = 'extn';                        {  kExtensionFolderType }
  349.                                                                 {     pFileShareOn                            = 'fshr',            // defined above }
  350.     pFinderPreferences            = 'pfrp';
  351.     pFontsFolder                = 'ffnt';                        {     pIsFrontProcess                            = 'pisf',            // defined in AERegistry.r }
  352.                                                                 {     pInsertionLoc                            = 'pins',            // defined in AERegistry.r }
  353.     pLargestFreeBlock            = 'mfre';
  354.     pPreferencesFolder            = 'pref';                        {  kPreferencesFolderType }
  355.                                                                 {     pProductVersion                            = 'ver2',            // defined above }
  356.                                                                 {     pUserSelection                            = 'pusl',            // defined in AERegistry.r }
  357.                                                                 {     pFileShareStartingUp                    = 'fsup',            // defined above }
  358.     pShortCuts                    = 'scut';
  359.     pShutdownFolder                = 'shdf';
  360.     pStartupItemsFolder            = 'strt';                        {  kStartupFolderType }
  361.     pSystemFolder                = 'macs';                        {  kSystemFolderType }
  362.     pTemporaryFolder            = 'temp';                        {  kTemporaryFolderType }
  363.                                                                 {     pVersion                                = 'vers',            // defined in AERegistry.r }
  364.     pViewPreferences            = 'pvwp';                        {     pVisible                                = 'pvis',            // defined in AERegistry.r }
  365.     pStartingUp                    = 'awak';                        {  private property to tell whether the Finder is fully up and running }
  366.  
  367. {  Properties of class cSharingPrivileges (subclass of cObject) }
  368.     pSeeFiles                    = 'prvr';
  369.     pSeeFolders                    = 'prvs';
  370.     pMakeChanges                = 'prvw';
  371.  
  372. {
  373.    Properties of class cPreferences (subclass of cObject)
  374.   enum (
  375.       pShowFolderSize                            = 'sfsz',            // defined above for Views CP
  376.       pShowComment                            = 'scom',            // defined above for Views CP
  377.       pShowModificationDate                    = pShowDate,            // pShowDate defined above for Views CP
  378.       pShowKind                                = 'sknd',            // defined above for Views CP
  379.       pShowLabel                                = 'slbl',            // defined above for Views CP
  380.       pShowSize                                = 'ssiz',            // defined above for Views CP
  381.       pShowVersion                            = 'svrs',            // defined above for Views CP
  382.       pShowCreationDate                        = 'scda',            // defined in cPreferencesWindow
  383.       pShowFileType                            = 'sfty',            // defined in cPreferencesWindow
  384.       pShowFileCreator                        = 'sfcr',            // defined in cPreferencesWindow
  385.       pListViewIconSize                        = 'lvis',            // defined above for Views CP
  386.       pGridIcons                                = 'fgrd',            // defined above for Views CP
  387.       pStaggerIcons                            = 'fstg',            // defined above for Views CP
  388.       pViewFont                                = 'vfnt',            // defined above for Views CP
  389.       pViewFontSize                            = 'vfsz',            // defined above for Views CP
  390.       pUseRelativeDate                        = 'urdt',            // defined in cPreferencesWindow
  391.       pDelayBeforeSpringing                    = 'dela',            // defined in cPreferencesWindow
  392.       pShowMacOSFolder                        = 'sosf',            // defined in cPreferencesWindow
  393.       pUseShortMenus                            = 'usme',            // defined in cPreferencesWindow
  394.       pUseCustomNewMenu                        = 'ucnm',            // defined in cPreferencesWindow
  395.       pShowDesktopInBackground                = 'sdtb',            // defined in cPreferencesWindow
  396.       pActivateDesktopOnClick                    = 'adtc',            // defined in cPreferencesWindow
  397.       pLabel1                                    = 'lbl1',            // defined in cPreferencesWindow
  398.       pLabel2                                    = 'lbl2',            // defined in cPreferencesWindow
  399.       pLabel3                                    = 'lbl3',            // defined in cPreferencesWindow
  400.       pLabel4                                    = 'lbl4',            // defined in cPreferencesWindow
  401.       pLabel5                                    = 'lbl5',            // defined in cPreferencesWindow
  402.       pLabel6                                    = 'lbl6',            // defined in cPreferencesWindow
  403.       pLabel7                                    = 'lbl7',            // defined in cPreferencesWindow
  404.       pWindow                                    = cWindow            // defined above
  405.   );
  406. }
  407.  
  408. {
  409.    Properties of class cLabel (subclass of cObject)
  410.   enum (
  411.       pName                                    = 'pnam',            // defined in AERegistry.r
  412.       pColor                                    = 'colr',            // defined in AERegistry.r
  413.   );
  414. }
  415.  
  416. {  Misc Properties }
  417.     pSmallIcon                    = 'smic';
  418.     pSmallButton                = 'smbu';
  419.     pLargeButton                = 'lgbu';
  420.     pGrid                        = 'grid';
  421.  
  422. {
  423.   //////////////////////////////////////
  424.    Enumerations defined by the Finder
  425.   //////////////////////////////////////
  426. }
  427.  
  428.     enumViewBy                    = 'vwby';
  429.     enumGestalt                    = 'gsen';
  430.     enumConflicts                = 'cflc';
  431.     enumExistingItems            = 'exsi';
  432.     enumOlderItems                = 'oldr';
  433.  
  434.     enumDate                    = 'enda';
  435.     enumAnyDate                    = 'anyd';
  436.     enumToday                    = 'tday';
  437.     enumYesterday                = 'yday';
  438.     enumThisWeek                = 'twek';
  439.     enumLastWeek                = 'lwek';
  440.     enumThisMonth                = 'tmon';
  441.     enumLastMonth                = 'lmon';
  442.     enumThisYear                = 'tyer';
  443.     enumLastYear                = 'lyer';
  444.     enumBeforeDate                = 'bfdt';
  445.     enumAfterDate                = 'afdt';
  446.     enumBetweenDate                = 'btdt';
  447.     enumOnDate                    = 'ondt';
  448.  
  449.     enumAllDocuments            = 'alld';
  450.     enumFolders                    = 'fold';
  451.     enumAliases                    = 'alia';
  452.     enumStationery                = 'stat';
  453.  
  454.     enumWhere                    = 'wher';
  455.     enumAllLocalDisks            = 'aldk';
  456.     enumAllRemoteDisks            = 'ardk';
  457.     enumAllDisks                = 'alld';
  458.     enumAllOpenFolders            = 'aofo';
  459.  
  460.  
  461.     enumIconSize                = 'isiz';
  462.     enumSmallIconSize            = 'smic';
  463.     enumMiniIconSize            = 'miic';
  464.     enumLargeIconSize            = 'lgic';
  465.  
  466.     enumSortDirection            = 'sodr';
  467.     enumSortDirectionNormal        = 'snrm';
  468.     enumSortDirectionReverse    = 'srvs';
  469.  
  470. {
  471.   //////////////////////////////////////
  472.    Types defined by the Finder
  473.   //////////////////////////////////////
  474. }
  475.  
  476.     typeIconFamily                = 'ifam';                        {  An AEList of typeIconAndMask, type8BitIcon, & c. }
  477.     typeIconAndMask                = 'ICN#';
  478.     type8BitIcon                = 'icl8';
  479.     type4BitIcon                = 'icl4';
  480.     typeSmallIconAndMask        = 'ics#';
  481.     typeSmall8BitIcon            = 'ics8';
  482.     typeSmall4BitIcon            = 'ics4';
  483.     typeRelativeTime            = 'rtim';
  484.     typeConceptualTime            = 'timc';
  485.  
  486. {
  487.   //////////////////////////////////////
  488.    Keywords defined by the Finder
  489.   //////////////////////////////////////
  490. }
  491.  
  492.     keyIconAndMask                = 'ICN#';
  493.     key8BitIcon                    = 'icl8';
  494.     key4BitIcon                    = 'icl4';
  495.     keySmallIconAndMask            = 'ics#';
  496.     keySmall8BitIcon            = 'ics8';
  497.     keySmall4BitIcon            = 'ics4';
  498.     keyAEUsing                    = 'usin';
  499.     keyAEReplacing                = 'alrp';
  500.     keyAENoAutoRouting            = 'rout';
  501.     keyLocalPositionList        = 'mvpl';
  502.     keyGlobalPositionList        = 'mvpg';
  503.  
  504. {
  505.   //////////////////////////////////////
  506.    New prepositions used by the Finder
  507.   //////////////////////////////////////
  508. }
  509.  
  510.     keyASPrepositionHas            = 'has ';
  511.     keyAll                        = 'kyal';
  512.     keyOldFinderItems            = 'fsel';
  513.  
  514. {
  515.   //////////////////////////////////////
  516.    New key forms used by the Finder
  517.   //////////////////////////////////////
  518. }
  519.  
  520.     formAlias                    = 'alis';
  521.     formCreator                    = 'fcrt';
  522.  
  523.  
  524. {
  525.   //////////////////////////////////////
  526.    Finder error codes
  527.   //////////////////////////////////////
  528. }
  529.  
  530.     errFinderIsBusy                = -15260;
  531.     errFinderWindowNotOpen        = -15261;
  532.     errFinderCannotPutAway        = -15262;
  533.     errFinderWindowMustBeIconView = -15263;                        {  RequireWindowInIconView }
  534.     errFinderWindowMustBeListView = -15264;                        {  RequireWindowInListView }
  535.     errFinderCantMoveToDestination = -15265;
  536.     errFinderCantMoveSource        = -15266;
  537.     errFinderCantOverwrite        = -15267;
  538.     errFinderIncestuousMove        = -15268;                        {  Could just use errFinderCantMoveSource }
  539.     errFinderCantMoveToAncestor    = -15269;                        {  Could also use errFinderCantMoveSource }
  540.     errFinderCantUseTrashedItems = -15270;
  541.     errFinderItemAlreadyInDest    = -15271;                        {  Move from folder A to folder A }
  542.     errFinderUnknownUser        = -15272;                        {  Includes unknown group }
  543.     errFinderSharePointsCantInherit = -15273;
  544.     errFinderWindowWrongType    = -15274;
  545.     errFinderPropertyNowWindowBased = -15275;
  546.     errFinderCorruptOpenFolderList = -15276;
  547.     errFinderNoInvisibleFiles    = -15277;
  548.     errFinderBoundsWrong        = -15278;
  549.     errAEValueOutOfRange        = -15279;
  550.     errFinderPropertyDoesNotApply = -15280;
  551.     errFinderFileSharingMustBeOn = -15281;
  552.     errFinderMustBeActive        = -15282;
  553.     errFinderVolumeNotFound        = -15283;                        {  more descriptive than what we get with nsvErr }
  554.     errFinderLockedItemsInTrash    = -15284;                        {  there are some locked items in the trash }
  555.     errFinderOnlyLockedItemsInTrash = -15285;                    {  all the items (except folders) in the trash are locked }
  556.     errFinderProgramLinkingMustBeOn = -15286;
  557.     errFinderLastReserved        = -15379;
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564. {$ALIGN RESET}
  565. {$POP}
  566.  
  567. {$SETC UsingIncludes := FinderRegistryIncludes}
  568.  
  569. {$ENDC} {__FINDERREGISTRY__}
  570.  
  571. {$IFC NOT UsingIncludes}
  572.  END.
  573. {$ENDC}
  574.